PDF4Java Reference Documentation
com.o2sol.pdf4java.graphics Package / PDFContentStream Class / cCurveTo Method
X coordinate of the first control point.
Y coordinate of the first control point.
X coordinate of the second control point.
Y coordinate of the second control point.
X coordinate of the third control point.
Y coordinate of the third control point.
In This Topic
    cCurveTo Method
    In This Topic
    Append a cubic Bézier curve to the current path. Operator: c
    Syntax
    public void cCurveTo( 
       double x1,
       double y1,
       double x2,
       double y2,
       double x3,
       double y3
    )

    Parameters

    x1
    X coordinate of the first control point.
    y1
    Y coordinate of the first control point.
    x2
    X coordinate of the second control point.
    y2
    Y coordinate of the second control point.
    x3
    X coordinate of the third control point.
    y3
    Y coordinate of the third control point.
    See Also